home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevabuf.c < prev    next >
C/C++ Source or Header  |  1997-06-10  |  13KB  |  365 lines

  1. /* Copyright (C) 1994, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevabuf.c */
  20. /* Alpha-buffering memory devices */
  21. #include "memory_.h"
  22. #include "gx.h"
  23. #include "gserrors.h"
  24. #include "gxdevice.h"
  25. #include "gxdevmem.h"            /* semi-public definitions */
  26. #include "gdevmem.h"            /* private definitions */
  27.  
  28. /* ================ Alpha devices ================ */
  29.  
  30. /*
  31.  * These devices store 2 or 4 bits of alpha.  They are a hybrid of a
  32.  * monobit device (for color mapping) and a 2- or 4-bit device (for painting).
  33.  * Currently, we only use them for character rasterizing, but they might be
  34.  * useful for other things someday.
  35.  */
  36.  
  37. /* We can't initialize the device descriptor statically very well, */
  38. /* so we patch up the image2 or image4 descriptor. */
  39. private dev_proc_map_rgb_color(mem_alpha_map_rgb_color);
  40. private dev_proc_map_color_rgb(mem_alpha_map_color_rgb);
  41. private dev_proc_map_rgb_alpha_color(mem_alpha_map_rgb_alpha_color);
  42. private dev_proc_get_alpha_bits(mem_alpha_get_alpha_bits);
  43. private dev_proc_copy_alpha(mem_alpha_copy_alpha);
  44.  
  45. void
  46. gs_make_mem_alpha_device(gx_device_memory *adev, gs_memory_t *mem,
  47.   gx_device *target, int alpha_bits)
  48. {    gs_make_mem_device(adev, gdev_mem_device_for_bits(alpha_bits),
  49.                mem, 0, target);
  50.         /* This is a black-and-white device ... */
  51.     adev->color_info = gdev_mem_device_for_bits(1)->color_info;
  52.         /* ... but it has multiple bits per pixel ... */
  53.     adev->color_info.depth = alpha_bits;
  54.         /* ... and different color mapping. */
  55.     set_dev_proc(adev, map_rgb_color, mem_alpha_map_rgb_color);
  56.     set_dev_proc(adev, map_color_rgb, mem_alpha_map_color_rgb);
  57.     set_dev_proc(adev, map_rgb_alpha_color, mem_alpha_map_rgb_alpha_color);
  58.     set_dev_proc(adev, get_alpha_bits, mem_alpha_get_alpha_bits);
  59.     set_dev_proc(adev, copy_alpha, mem_alpha_copy_alpha);
  60. }
  61.  
  62. /* Reimplement color mapping. */
  63. private gx_color_index
  64. mem_alpha_map_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
  65.   gx_color_value b)
  66. {    gx_color_index color = gx_forward_map_rgb_color(dev, r, g, b);
  67.     return (color == 0 || color == gx_no_color_index ? color :
  68.         (gx_color_index)((1 << mdev->log2_alpha_bits) - 1));
  69. }
  70. private int
  71. mem_alpha_map_color_rgb(gx_device *dev, gx_color_index color,
  72.   gx_color_value prgb[3])
  73. {    return
  74.       gx_forward_map_color_rgb(dev,
  75.                    (color == 0 ? color : (gx_color_index)1),
  76.                    prgb);
  77. }
  78. private gx_color_index
  79. mem_alpha_map_rgb_alpha_color(gx_device *dev, gx_color_value r,
  80.   gx_color_value g, gx_color_value b, gx_color_value alpha)
  81. {    gx_color_index color = gx_forward_map_rgb_color(dev, r, g, b);
  82.     return (color == 0 || color == gx_no_color_index ? color :
  83.         (gx_color_index)(alpha >> (gx_color_value_bits -
  84.                        mdev->log2_alpha_bits)));
  85. }
  86. private int
  87. mem_alpha_get_alpha_bits(gx_device *dev, graphics_object_type type)
  88. {    return 1 << mdev->log2_alpha_bits;
  89. }
  90. /* Implement alpha copying. */
  91. private int
  92. mem_alpha_copy_alpha(gx_device *dev, const byte *data, int data_x,
  93.   int raster, gx_bitmap_id id, int x, int y, int width, int height,
  94.   gx_color_index color, int depth)
  95. {    /* Just use copy_color. */
  96.     return (color == 0 ?
  97.         (*dev_proc(dev, fill_rectangle))(dev, x, y, width, height,
  98.                          color) :
  99.         (*dev_proc(dev, copy_color))(dev, data, data_x, raster, id,
  100.                          x, y, width, height));
  101. }
  102.  
  103. /* ================ Alpha-buffer device ================ */
  104.  
  105. /*
  106.  * This device converts graphics sampled at a higher resolution to
  107.  * alpha values at a lower resolution.  It does this by accumulating
  108.  * the bits of a band and then converting the band to alphas.
  109.  * In order to make this work, the client of the device must promise
  110.  * only to visit each band at most once, except possibly for a single
  111.  * scan line overlapping the adjacent band, and must promise only to write
  112.  * a single color into the output.  In particular, this works
  113.  * within a single call on gx_fill_path (if the fill loop is constrained
  114.  * to process bands of limited height on each pass) or a single masked image
  115.  * scanned in Y order, but not across such calls and not for other
  116.  * kinds of painting operations.
  117.  *
  118.  * We implement this device as a subclass of a monobit memory device.
  119.  * (We put its state in the definition of gx_device_memory just because
  120.  * actual subclassing introduces a lot of needless boilerplate.)
  121.  * We only allocate enough bits for one band.  The height of the band
  122.  * must be a multiple of the Y scale factor; the minimum height
  123.  * of the band is twice the Y scale factor.
  124.  *
  125.  * The bits in storage are actually a sliding window on the true
  126.  * oversampled image.  To avoid having to copy the bits around when we
  127.  * move the window, we adjust the mapping between the client's Y values
  128.  * and our own, as follows:
  129.  *    Client        Stored
  130.  *    ------        ------
  131.  *    y0..y0+m-1    n-m..n-1
  132.  *    y0+m..y0+n-1    0..n-m-1
  133.  * where n and m are multiples of the Y scale factor and 0 <= m <= n <=
  134.  * the height of the band.  (In the device structure, m is called
  135.  * mapped_start and n is called mapped_height.)  This allows us to slide
  136.  * the window incrementally in either direction without copying any bits.
  137.  */
  138.  
  139. /* Procedures */
  140. private dev_proc_close_device(mem_abuf_close);
  141. private dev_proc_copy_mono(mem_abuf_copy_mono);
  142. private dev_proc_fill_rectangle(mem_abuf_fill_rectangle);
  143. private dev_proc_get_clipping_box(mem_abuf_get_clipping_box);
  144.  
  145. /* The device descriptor. */
  146. private const gx_device_memory far_data mem_alpha_buffer_device =
  147.   mem_device("image(alpha buffer)", 0, 1,
  148.     gx_forward_map_rgb_color, gx_forward_map_color_rgb,
  149.     mem_abuf_copy_mono, gx_default_copy_color, mem_abuf_fill_rectangle,
  150.     gx_no_strip_copy_rop);
  151.  
  152. /* Make an alpha-buffer memory device. */
  153. /* We use abuf instead of alpha_buffer because */
  154. /* gcc under VMS only retains 23 characters of procedure names. */
  155. void
  156. gs_make_mem_abuf_device(gx_device_memory *adev, gs_memory_t *mem,
  157.   gx_device *target, const gs_log2_scale_point *pscale,
  158.   int alpha_bits, int mapped_x)
  159. {    gs_make_mem_device(adev, &mem_alpha_buffer_device, mem, 0, target);
  160.     adev->max_fill_band = 1 << pscale->y;
  161.     adev->log2_scale = *pscale;
  162.     adev->log2_alpha_bits = alpha_bits >> 1; /* works for 1,2,4 */
  163.     adev->mapped_x = mapped_x;
  164.     set_dev_proc(adev, close_device, mem_abuf_close);
  165.     set_dev_proc(adev, get_clipping_box, mem_abuf_get_clipping_box);
  166. }
  167.  
  168. /* Test whether a device is an alpha-buffering device. */
  169. bool
  170. gs_device_is_abuf(const gx_device *dev)
  171. {    /* We can't just compare the procs, or even an individual proc, */
  172.     /* because we might be tracing.  Instead, check the identity of */
  173.     /* the device name. */
  174.     return dev->dname == mem_alpha_buffer_device.dname;
  175. }
  176.  
  177. /* Internal routine to flush a block of the buffer. */
  178. /* A block is a group of scan lines whose initial Y is a multiple */
  179. /* of the Y scale and whose height is equal to the Y scale. */
  180. private int
  181. abuf_flush_block(gx_device_memory *adev, int y)
  182. {    gx_device *target = adev->target;
  183.     int block_height = 1 << adev->log2_scale.y;
  184.     int alpha_bits = 1 << adev->log2_alpha_bits;
  185.     int ddepth =
  186.       (adev->width >> adev->log2_scale.x) << adev->log2_alpha_bits;
  187.     uint draster = bitmap_raster(ddepth);
  188.     int buffer_y = y - adev->mapped_y + adev->mapped_start;
  189.     byte *bits;
  190.  
  191.     if ( buffer_y >= adev->height )
  192.       buffer_y -= adev->height;
  193.     bits = scan_line_base(adev, buffer_y);
  194.     { /*
  195.        * Many bits are typically zero.  Save time by computing
  196.        * an accurate X bounding box before compressing.
  197.        * Unfortunately, in order to deal with alpha nibble swapping
  198.        * (see gsbitops.c), we can't expand the box only to pixel
  199.        * boundaries:
  200.           int alpha_mask = -1 << adev->log2_alpha_bits;
  201.        * Instead, we must expand it to byte boundaries,
  202.        */
  203.       int alpha_mask = ~7;
  204.       gs_int_rect bbox;
  205.       int width;
  206.  
  207.       bits_bounding_box(bits, block_height, adev->raster, &bbox);
  208.       bbox.p.x &= alpha_mask;
  209.       bbox.q.x = (bbox.q.x + ~alpha_mask) & alpha_mask;
  210.       width = bbox.q.x - bbox.p.x;
  211.       bits_compress_scaled(bits, bbox.p.x, width, block_height,
  212.                    adev->raster, bits, draster, &adev->log2_scale,
  213.                    adev->log2_alpha_bits);
  214.       return (*dev_proc(target, copy_alpha))(target,
  215.                     bits, 0, draster, gx_no_bitmap_id,
  216.                     (adev->mapped_x + bbox.p.x) >>
  217.                          adev->log2_scale.x,
  218.                     y >> adev->log2_scale.y,
  219.                     width >> adev->log2_scale.x, 1,
  220.                     adev->save_color, alpha_bits);
  221.     }
  222. }
  223. /* Flush the entire buffer. */
  224. private int
  225. abuf_flush(gx_device_memory *adev)
  226. {    int y, code = 0;
  227.     int block_height = 1 << adev->log2_scale.y;
  228.     for ( y = 0; y < adev->mapped_height; y += block_height )
  229.       if ( (code = abuf_flush_block(adev, adev->mapped_y + y)) < 0 )
  230.         return code;
  231.     adev->mapped_height = adev->mapped_start = 0;
  232.     return 0;
  233. }
  234.  
  235. /* Close the device, flushing the buffer. */
  236. private int
  237. mem_abuf_close(gx_device *dev)
  238. {    int code = abuf_flush(mdev);
  239.     if ( code < 0 )
  240.       return code;
  241.     return mem_close(dev);
  242. }
  243.  
  244. /*
  245.  * Framework for mapping a requested imaging operation to the buffer.
  246.  * For now, we assume top-to-bottom transfers and use a very simple algorithm.
  247.  */
  248. typedef struct y_transfer_s {
  249.     int y_next;
  250.     int height_left;
  251.     int transfer_y;
  252.     int transfer_height;
  253. } y_transfer;
  254. private void near
  255. y_transfer_init(y_transfer *pyt, gx_device *dev, int ty, int th)
  256. {    int bh = 1 << mdev->log2_scale.y;
  257.     if ( ty < mdev->mapped_y || ty > mdev->mapped_y + mdev->mapped_height )
  258.       {    abuf_flush(mdev);
  259.         mdev->mapped_y = ty & -bh;
  260.         mdev->mapped_height = bh;
  261.         memset(scan_line_base(mdev, 0), 0, bh * mdev->raster);
  262.       }
  263.     pyt->y_next = ty;
  264.     pyt->height_left = th;
  265.     pyt->transfer_height = 0;
  266. }
  267. /* while ( yt.height_left > 0 ) { y_transfer_next(&yt, mdev); ... } */
  268. private void near
  269. y_transfer_next(y_transfer *pyt, gx_device *dev)
  270. {    int my = mdev->mapped_y, mh = mdev->mapped_height;
  271.     int ms = mdev->mapped_start;
  272.     int ty = pyt->y_next += pyt->transfer_height;
  273.     int th = pyt->height_left;
  274.     int bh = 1 << mdev->log2_scale.y;
  275.     /* From here on, we know that my <= ty <= my + mh. */
  276.     int tby, tbh;
  277.     if ( ty == my + mh )
  278.       {    /* Add a new block at my1. */
  279.         if ( mh == mdev->height )
  280.           {    abuf_flush_block(mdev, my);
  281.             mdev->mapped_y = my += bh;
  282.             if ( (mdev->mapped_start = ms += bh) == mh )
  283.               mdev->mapped_start = ms = 0;
  284.           }
  285.         else
  286.           {    /* Because we currently never extend backwards, */
  287.             /* we know we can't wrap around in this case. */
  288.             mdev->mapped_height = mh += bh;
  289.           }
  290.         memset(scan_line_base(mdev, (ms == 0 ? mh : ms) - bh),
  291.                0, bh * mdev->raster);
  292.       }
  293.     /* Now we know that my <= ty < my + mh. */
  294.     tby = ty - my + ms;
  295.     if ( tby < mdev->height )
  296.       {    tbh = mdev->height - ms;
  297.         if ( tbh > mh ) tbh = mh;
  298.         tbh -= tby - ms;
  299.       }
  300.     else            /* wrap around */
  301.       {    tby -= mdev->height;
  302.         tbh = ms + mh - dev->height - tby;
  303.       }
  304.     if_debug7('v', "[v]my=%d, mh=%d, ms=%d, ty=%d, th=%d, tby=%d, tbh=%d\n",
  305.           my, mh, ms, ty, th, tby, tbh);
  306.     if ( tbh > th ) tbh = th;
  307.     pyt->height_left = th - tbh;
  308.     pyt->transfer_y = tby;
  309.     pyt->transfer_height = tbh;
  310. }
  311.  
  312. /* Copy a monobit image. */
  313. private int
  314. mem_abuf_copy_mono(gx_device *dev,
  315.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  316.   int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
  317. {    y_transfer yt;
  318.     if ( zero != gx_no_color_index || one == gx_no_color_index )
  319.       return_error(gs_error_undefinedresult);
  320.     x -= mdev->mapped_x;
  321.     fit_copy_xwh(dev, base, sourcex, sraster, id, x, y, w, h);    /* don't limit y */
  322.     mdev->save_color = one;
  323.     y_transfer_init(&yt, dev, y, h);
  324.     while ( yt.height_left > 0 )
  325.       {    y_transfer_next(&yt, dev);
  326.         (*dev_proc(&mem_mono_device, copy_mono))(dev,
  327.                 base + (yt.y_next - y) * sraster,
  328.                 sourcex, sraster, gx_no_bitmap_id,
  329.                 x, yt.transfer_y, w, yt.transfer_height,
  330.                 gx_no_color_index, (gx_color_index)1);
  331.       }
  332.     return 0;
  333. }
  334.  
  335. /* Fill a rectangle. */
  336. private int
  337. mem_abuf_fill_rectangle(gx_device *dev, int x, int y, int w, int h,
  338.   gx_color_index color)
  339. {    y_transfer yt;
  340.     x -= mdev->mapped_x;
  341.     fit_fill_xyw(dev, x, y, w, h);        /* don't limit h */
  342.                         /* or check w <= 0, h <= 0 */
  343.     mdev->save_color = color;
  344.     y_transfer_init(&yt, dev, y, h);
  345.     while ( yt.height_left > 0 )
  346.       {    y_transfer_next(&yt, dev);
  347.         (*dev_proc(&mem_mono_device, fill_rectangle))(dev,
  348.                 x, yt.transfer_y, w, yt.transfer_height,
  349.                 (gx_color_index)1);
  350.       }
  351.     return 0;
  352. }
  353.  
  354. /* Get the clipping box.  We must scale this up by the number of alpha bits. */
  355. private void
  356. mem_abuf_get_clipping_box(gx_device *dev, gs_fixed_rect *pbox)
  357. {    gx_device *tdev = mdev->target;
  358.  
  359.     (*dev_proc(tdev, get_clipping_box))(tdev, pbox);
  360.     pbox->p.x <<= mdev->log2_scale.x;
  361.     pbox->p.y <<= mdev->log2_scale.y;
  362.     pbox->q.x <<= mdev->log2_scale.x;
  363.     pbox->q.y <<= mdev->log2_scale.y;
  364. }
  365.